home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 001a / robo40_a.zip / WCSTATS.RS < prev   
Text File  |  1992-02-12  |  761b  |  30 lines

  1. TITLE "Capture Wildcat File Statistics"
  2. ;
  3. ;  NOTE: The "S" command form the FILE menu must be implemented on the BBS
  4. ;        For this script to work!
  5. ;
  6.  
  7.     ; Make sure we are at the file menu.
  8.     VENUE FILE
  9.  
  10.     ; Open capture file, inform user what's going on and send stats command.
  11.     CAPTURE "T___STAT.TXT" OVERWRITE
  12.     MESSAGE "Capturing file transfer statistics"
  13.     SEND "S|"
  14.  
  15.     ; Find our way back to the file menu.
  16.     VENUE FILE
  17.  
  18.     ; Close the capture file.
  19.     CLOSE
  20.  
  21.     ; Place the captured text in the BBS directory "Statistics" screen.
  22.     STATISTICS "T___STAT.TXT"
  23.  
  24.     ; Erase the used capture file.
  25.     ERASE "T___STAT.TXT"
  26.  
  27. ; Exiting with a ZERO argument tells Robocomm the script was a success.
  28. EXIT 0
  29.  
  30.